delete ending part of the string java

79

delete ending part of the string java -

//To delete starting from "opened"
String str ="13 opened by someone";

String result = str.substring(0,str.lastIndexOf(" opened"));

Comments

Submit
0 Comments